home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{D39AF585-C3A9-11D2-8AEE-EA9F9798D91B}#6.0#0"; "VBTOOLS.ocx"
- Begin VB.Form Snap
- Caption = "Snap Screen"
- ClientHeight = 6375
- ClientLeft = 165
- ClientTop = 735
- ClientWidth = 8340
- LinkTopic = "Form1"
- ScaleHeight = 6375
- ScaleWidth = 8340
- StartUpPosition = 3 'Windows Default
- Begin VBTOOLS.SnapScreen SnapScreen1
- Height = 4575
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 6375
- _ExtentX = 11245
- _ExtentY = 8070
- SnapScreen = -1 'True
- End
- Begin VB.Menu menscreen
- Caption = "Screen"
- End
- Begin VB.Menu mensave
- Caption = "Save"
- End
- Attribute VB_Name = "Snap"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Resize()
- SnapScreen1.Height = Snap.ScaleHeight
- SnapScreen1.Width = Snap.ScaleWidth
- End Sub
- Private Sub mensave_Click()
- SnapScreen1.ScreenFileName = "c:\testsnap.BMP"
- End Sub
- Private Sub menscreen_Click()
- Snap.WindowState = vbMinimized
- SnapScreen1.SnapScreen = True
- Snap.WindowState = vbNormal
- End Sub
-